home *** CD-ROM | disk | FTP | other *** search
- function doSomething()
- {
- getURL("http://www.cremationproductions.com",_blank);
- }
- function doSomething2()
- {
- getURL("http://www.cremationproductions.com",_blank);
- }
- function doSomething3()
- {
- getURL("http://www.rustygames.com/index.php?ref=dp2",_blank);
- }
- stop();
- MENU.customItems.push(Functioned2);
- MENU = new ContextMenu();
- MENU.hideBuiltInItems();
- Functioned = new ContextMenuItem("Made by Eggy",doSomething);
- Functioned2 = new ContextMenuItem("Visit Cremation Productions",doSomething2);
- Functioned3 = new ContextMenuItem("Visit Rusty Games",doSomething3);
- MENU.customItems.push(Functioned);
- MENU.customItems.push(Functioned2);
- MENU.customItems.push(Functioned3);
- _root.menu = MENU;
-